安装服务器
http://www.runoob.com/git/git-server.html
git init --bare runoob.git
使用这个命令生产git密钥
ssh-keygen -t rsa -C "woshilinqin163@163.com"
使用公钥私钥 用户目录下的.ssh文件夹 cd .ssh touch authorized_keys 复制上面命令生产的git密钥到这里面 开启linux配置支持(默认应该都是不用改的): sudo vim /etc/ssh/sshd_config
StrictModes no #由yes改为no RSAAuthentication yes PubkeyAuthentication yes AuthorizedKeysFile %h/.ssh/authorized_keys #这里要取消注释
第二种:用户密码登录
使用用户帐号 添加用户组 groupadd gitgroup 添加用户 useradd git1 设置用户密码 passwd git1 用户组修改 usermod -G gitgroup git1 初始化git仓库 git init --bare runoob.git 修改用户组目录权限 chgrp -R gitgroup /data/gitrepo/ 修改文件读写权限 chmod -R 777 /data/gitrepo/
git clone username@host:/myrepo/myrepo.git git clone git1@host:/myrepo/myrepo.git
但是在云主机上有问题,内网或者虚拟机忽略这个 1.使用软连接 ln -s /usr/local/git/bin/git-upload-pack /usr/bin/git-upload-pack
https://gitee.com/linqin07/pic/raw/master/1552468400850.png
2.修改本地的 .git文件夹里面config
https://gitee.com/linqin07/pic/raw/master/1552468412267.png
http://liuhui998.com/2010/10/25/git-over-ssh-config-problem/